Thumb

HTML Paragraphs Tag

1/29/2020 6:07:40 AM

In the Html paragraphs tag is more important when we write some paragraph or more text. This tag represents the <p></p> symbol. When we space the line into p tag then we use the <pre></pre> tag.  Now given bellow the paragraphs tag example code and explain the code:

<!DOCTYPE html>
<html>
      <head>
      	<title>This is HTML</title>
      </head>
      <body>
      <!--HTML heading tag-->
      <h1 style="color: green">Farhan Sakib Jesy</h1>
       <!--HTML p tag-->
     <p style="color: red">
        Hey, myself Farhan Sakib Jesy.
        Web Designing & Developing is my Passion. I Just make my passion Convert to Profession.
        I Eenjoy Programming.
     </p>
  <!--HTML pre tag-->
<pre style="color: red">  
  Hey, myself Farhan Sakib Jesy.
  Web Designing & Developing is my Passion. I Just make my passion Convert to Profession.
  I Eenjoy Programming.
</pre>
      </body>
</html>

Now we can see the p tag which is represent the only paragraph line by line but pre tag are represent the line also count the enter and space at a time.